[USER (data scientist)]: Awesome! Now, how about finding the confidence intervals for the average win/loss ratio of each surface type? Please generate a series of tuples representing the 95% confidence intervals for average win/loss ratios on hard, clay, and grass surfaces in the ATP tennis dataset.
My template of code snippet is:

---BEGIN CODE TEMPLATE---

import pandas as pd
import scipy.stats as stats
import pickle
from decision_company import read_csv_file,

# please import the necessary private functions from decision_company first

atp_tennis = read_csv_file('atp_tennis.csv')

# YOUR SOLUTION BEGIN:
<code1>
[COMPLETE YOUR CODE]
</code1>
# YOUR SOLUTION END

print(hard_ci)

# save data
pickle.dump(hard_ci,open("./ref_result/hard_ci.pkl","wb"))

# YOUR SOLUTION BEGIN:
<code2>
[COMPLETE YOUR CODE]
</code2>
# YOUR SOLUTION END

print(clay_ci)

# save data
pickle.dump(clay_ci,open("./ref_result/clay_ci.pkl","wb"))

# YOUR SOLUTION BEGIN:
<code3>
[COMPLETE YOUR CODE]
</code3>
# YOUR SOLUTION END

print(grass_ci)

# save data
pickle.dump(grass_ci,open("./ref_result/grass_ci.pkl","wb"))

---END CODE TEMPLATE---

[YOU (AI assistant)]: No problem! You can use the t-distribution to calculate the confidence intervals. Here's the code for that: 
'''
import pandas as pd
import scipy.stats as stats
import pickle
from decision_company import read_csv_file,

# please import the necessary private functions from decision_company first

atp_tennis = read_csv_file('atp_tennis.csv')

# YOUR SOLUTION BEGIN:
